home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Apple Location Manager / Makefile < prev   
Encoding:
Makefile  |  1998-01-09  |  1.1 KB  |  52 lines  |  [TEXT/MPS ]

  1. #
  2. #     File:        Makefile
  3. #     Contains:    Location Manager SDK Sample Module MPW Makefile
  4. #     Version:    ALM SDK 2.0
  5. #                 Package:    Location Manager SDK 2.0
  6. #     Copyright:    © 1996-1997 by Apple Computer, Inc.
  7. #                 All rights reserved.
  8. #    Bugs?:        Please include the the file and version information (from above) with
  9. #                 the problem description.  Developers belonging to one of the Apple
  10. #                 developer programs can submit bug reports to:
  11. #                     devsupport@apple.com
  12. #
  13.  
  14. MAKEFILE         =    "Makefile"
  15. ObjDir            =    :Objects:
  16. SrcDir            =    :Sources:
  17.  
  18. COptions         =    -b 
  19.  
  20. Objects            =                                                 ∂
  21.                     "{ObjDir}Sample.c.o"                         ∂
  22.                     "{ObjDir}Utilities.c.o"                    
  23.  
  24. Generic ƒ "{ObjDir}Generic"
  25.     duplicate -y {Deps} {Targ}
  26.  
  27. : ƒ "{ObjDir}"
  28.  
  29. "{ObjDir}" ƒ "{SrcDir}"
  30.  
  31. "{ObjDir}Generic" ƒƒ {MAKEFILE} {Objects}
  32.     ilink                             ∂
  33.         -o {Targ}                     ∂
  34.         {Objects}                     ∂
  35.         -t 'almn' -c 'fall'         ∂
  36.         -sg "Main"                     ∂
  37.         -rt 'code=10000'             ∂
  38.         -m MAIN                     ∂
  39.         "{Libraries}IntEnv.o"         ∂
  40.         "{Libraries}Interface.o"
  41.  
  42. "{ObjDir}Generic" ƒƒ {MAKEFILE} "{SrcDir}Sample.r" "{SrcDir}Sample.h"
  43.     rez "{SrcDir}Sample.r" -o {Targ} -append
  44.  
  45. .c.o ƒ .c {MAKEFILE} 
  46.     {C} "{DepDir}{Default}.c" -o {Targ} {COptions}
  47.